home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVWSWRIT.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  934b  |  26 lines

  1. /*================================================*/
  2. /* TVWSWRIT.C                                     */
  3. /*                                                */
  4. /* (c) Copyright 1988 Ralf Brown                  */
  5. /*     All Rights Reserved                        */
  6. /* May be freely copied for noncommercial use as  */
  7. /* long as this copyright notice is kept intact   */
  8. /* and any changes are indicated in the comment   */
  9. /* blocks for the functions                       */
  10. /*================================================*/
  11.  
  12. #include <string.h>
  13. #include "tvapi.h"
  14.  
  15. /*================================================*/
  16. /* TVwin_swrite  write a null-terminated string   */
  17. /*   Ralf Brown 4/3/88                            */
  18. /*================================================*/
  19.  
  20. void pascal TVwin_swrite(OBJECT win,char *string)
  21. {
  22.    TVwin_write(win, string, strlen(string)) ;
  23. }
  24.  
  25. /* End of TVWSWRIT.C */
  26.